import { getSocialsApi } from "@/api/customservice"; import { Media } from "@/components/Media"; const Page = async () => { const socials = await getSocialsApi(); if (socials && socials.length === 0) return null; return (
); }; export default Page;